func runtime.isSystemGoroutine

8 uses

	runtime (current package)
		heapdump.go#L360: 	dumpbool(isSystemGoroutine(gp, false))
		mprof.go#L766: 		return gp1 != gp && readgstatus(gp1) != _Gdead && !isSystemGoroutine(gp1, false)
		proc.go#L3459: 	if isSystemGoroutine(gp, false) {
		proc.go#L4114: 	if isSystemGoroutine(newg, false) {
		proc.go#L4978: 		if isSystemGoroutine(gp, false) {
		proc.go#L5441: 		return isSystemGoroutine(gp, true)
		traceback.go#L1038: 		if gp == me || gp == curgp || readgstatus(gp) == _Gdead || isSystemGoroutine(gp, false) && level < 2 {
		traceback.go#L1111: func isSystemGoroutine(gp *g, fixed bool) bool {